home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  148 b   |  12 lines

  1. /*
  2.  * vprintf.c
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include <stdarg.h>
  7.  
  8. int vprintf(const char *format, va_list ap)
  9. {
  10.   return vfprintf(stdout, format, ap);
  11. }
  12.